home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / etc-update.conf < prev    next >
Text File  |  2006-06-30  |  2KB  |  76 lines

  1. # edit the lines below to your liking
  2. # $Id: /var/cvsroot/gentoo-src/portage/cnf/etc-update.conf,v 1.5.2.1 2004/10/22 16:53:30 carpaski Exp $
  3.  
  4. # mode - 0 for text, 1 for menu (support incomplete)
  5. # note that you need dev-util/dialog installed
  6. mode="0"
  7.  
  8. # Whether trivial/comment changes should be automerged
  9. eu_automerge="yes"
  10.  
  11. # arguments used whenever rm is called
  12. rm_opts="-i"
  13.  
  14. # arguments used whenever mv is called
  15. mv_opts="-i"
  16.  
  17. # arguments used whenever cp is called
  18. cp_opts="-i"
  19.  
  20. # pager for use with diff commands (see NOTE_2)
  21. pager="less"
  22. #pager=""
  23.  
  24. # For emacs-users
  25. # diff_command="eval emacs -nw --eval=\(ediff\ \"%file1\"\ \"%file2\"\)"
  26. #using_editor=1
  27.  
  28. # vim-users: you CAN use vimdiff for diff_command. (see NOTE_1)
  29. #diff_command="vim -d %file1 %file2"
  30. #using_editor=1
  31.  
  32. diff_command="diff -uN %file1 %file2"
  33. using_editor=0
  34.  
  35.  
  36. # vim-users: don't use vimdiff for merging (see NOTE_1)
  37. merge_command="sdiff -s -o %merged %orig %new"
  38.  
  39. # EXPLANATION
  40. #
  41. # pager:
  42. #
  43. # Examples of pager usage:
  44. #    pager=""        # don't use a pager
  45. #    pager="less -E"    # less
  46. #    pager="more"    # more
  47. #
  48. #
  49. # diff_command:
  50. #
  51. # Arguments:
  52. #    %file1    [REQUIRED]
  53. #    %file2    [REQUIRED]
  54. #
  55. # Examples of diff_command:
  56. #    diff_command="diff -uN %file1 %file2"    # diff
  57. #    diff_command="vim -d %file1 %file2"        # vimdiff
  58. #
  59. #
  60. # merge_command:
  61. #
  62. # Arguments:
  63. #    %orig    [REQUIRED]
  64. #   %new    [REQUIRED]
  65. #    %merged    [REQUIRED]
  66. #
  67. # Examples of merge_command:
  68. #    merge_command="sdiff -s -o %merged %old %new"    # sdiff
  69. #
  70.  
  71. # NOTE_1: Editors such as vim/vimdiff are not usable for the merge_command
  72. # because it is not known what filenames the produced files have (the user can
  73. # choose while using those programs)
  74.  
  75. # NOTE_2: Make sure pager is set to "" when using an editor as diff_command!
  76.